home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / c / EGCSWOSAlib.lha / src.lha / FastRand.c < prev    next >
C/C++ Source or Header  |  1998-08-02  |  125b  |  10 lines

  1. #include <exec/types.h>
  2.  
  3. ULONG FastRand(ULONG seed)
  4. { ULONG a=seed<<1;
  5.   if((LONG)seed<=0)
  6.     a^=0x1d872b41;
  7.   return a;
  8. }
  9.  
  10.